home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 22 / Cream of the Crop 22.iso / program / snip9611.zip / WEIRD.C < prev    next >
C/C++ Source or Header  |  1996-11-24  |  331b  |  17 lines

  1. /* +++Date last modified: 02-Nov-1995 */
  2.  
  3. #include<stdio.h>
  4.  
  5. char *c[] = { "ENTER", "NEW", "POINT", "FIRST" };
  6. char **cp[] = { c+3, c+2, c+1, c };
  7. char ***cpp = cp;
  8.  
  9. main()
  10. {
  11.     printf("%s", **++cpp);
  12.     printf("%s ", *--*++cpp+3);
  13.     printf("%s", *cpp[-2]+3);
  14.     printf("%s\n", cpp[-1][-1]+1);
  15.     return 0;
  16. }
  17.